home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-04 / bipl.zip / IDOL.ZIP / INVERSE.IOL < prev    next >
Text File  |  1991-12-30  |  226b  |  13 lines

  1. class inverse:fraction(d)
  2. initially
  3.   self.n := 1
  4. end
  5.  
  6. procedure main()
  7.   x := inverse(2)
  8.   y := fraction(3,4)
  9.   z := x$times(y)
  10.   write("The decimal equivalent of ",z$asString(),
  11.     " is ",trim(z$asReal(),'0'))
  12. end
  13.